output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill —
Since the original csv data is too large and I cannot commit it to github I filtered the data beforehands and saved it as a new csv file called “nyc_inspect_hw” before I commited the creteria is manhattan and score of greater than 10 and less than 50
The following is my code:
nyc_inspec = read_csv(file=“./nyc_inspec.csv”)%>% filter(boro==“Manhattan”)%>% filter(score>10)%>% filter(score<50)
write.csv(nyc_inspec,“./nyc_inspec_hw.csv”)
Load the Data, filter the data with restaurants in Manhattan only.